home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / XML Utilities / Professional Programmer XSL IDE / Xselerator25.msi / Data.Cab / F38208_testProductTree.xsl < prev    next >
Encoding:
Extensible Markup Language  |  2002-01-20  |  446 b   |  18 lines

  1. <xsl:stylesheet version="1.0" 
  2. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  3. >
  4.     <xsl:import href="productTree.xsl"/>
  5.  
  6.    <!-- This transformation must be applied to:
  7.         numTree.xml 
  8.     -->
  9.  
  10.     <xsl:output method="text"/>
  11.     
  12.     <xsl:template match="/">
  13.       <xsl:call-template name="productTree">
  14.         <xsl:with-param name="pTree" select="/*"/>
  15.       </xsl:call-template>
  16.     </xsl:template>
  17.  
  18. </xsl:stylesheet>